home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / macros / latex209 / contrib / tamueethesis / file.c < prev    next >
C/C++ Source or Header  |  1993-07-23  |  872b  |  31 lines

  1. /**************************************************************/
  2. /* Filename: auto4.c                    by: Shiau Yan-Chyuan  */
  3. /*                                                            */
  4. /* Usage:                                                     */
  5. /**************************************************************/
  6.  
  7. #include <stdio.h>
  8. #include "malloc.h"
  9.  
  10. #define LINE 121
  11. #define LOW 0.5
  12. #define MID 2.5
  13. #define UP  4.5
  14.  
  15. typedef struct SOLUTION
  16. {
  17.     float rise_l,rise_m,rise_h,rise_r,rise_dt1,rise_dt2;
  18.     float fall_l,fall_m,fall_h,fall_f,fall_dt1,fall_dt2;
  19.     float pre_r_dt2,pre_f_dt2;
  20.     int flag_rl,flag_rm,flag_rh;
  21.     int flag_fl,flag_fm,flag_fh;
  22. } SX;
  23.  
  24. struct SOLUTION sol[2];
  25. FILE *point_out,*point_abs,*fopen();
  26. char file_out[20],file_abs[20];
  27. float start_time=2.0e-09;
  28. /* char *sprintf(),*strcpy(),*fprintf(); */
  29. float fabs(),atof();
  30. int atoi();
  31.